5 |
How do I put a picture on the control's background
With ScrollBar1 .Picture = ScrollBar1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .VisiblePart(640) = False .BackColor = &H80000004 End With |
4 |
How can I change the size of control's font
|
3 |
How do I change the control's font
With ScrollBar1 .Font.Name = "Tahoma" .ForeColor = RGB(255,0,0) .Caption(256) = "<img>0</img>thumb" End With |
2 |
How can I change the control's foreground color
With ScrollBar1 .ForeColor = RGB(255,0,0) .Caption(256) = "<img>0</img>thumb" End With |
1 |
How can I change the control's background color
With ScrollBar1 .BackColor = RGB(0,255,0) .VisiblePart(640) = False End With |